Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.55K
~153.60K People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for shak187

def Get_Data(Input): New_List = [] for i in range(len(Input)): New_List.append(Input[i]) return Check_Twain(New_List) def Check_Twain(List_Data): for b in range(int((len(List_Data)/2)+1)): for a in range(len(List_Data)-1): if List_Data[a] == "(" and List_Data[a+1] == ")" or List_Data[a] == "[" and List_Data[a+1] == "]" or List_Data[a] == "{" and List_Data[a+1] == "}": List_Data.pop((a+1)) List_Data.pop(a) break return …

Member Avatar for eliasarximan
2
154K

The End.