Please convert Python Template coding style to conform to PEP8?

I noticed all the Python3 solution templates are provided in rather C++/Java style,

class Solution:
    def oddCells(self, n: int, m: int, indices: List[List[int]]) -> int

Also the placeholder hint here when making a post seems to use Python not conforming to PEP8 (the official Python coding style),

def helloWorld():
    pass

For the start, can LeetCode please convert method names to conform to PEP8 everywhere,

def hello_world():
    pass

Maybe some junior experienced are using this website (I'm no idea). It can help the programming world by using a proper style per language at an early stage.

Comments (1)