Перевод с языка С++ на язык Python | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Перевод с языка С++ на язык Python

I need to translate a programm to Python #include <bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); int n; string s; cin >> n >> s; stack<char> st; map<char, char> ma; ma[')'] = '('; ma[']'] = '['; ma['}'] = '{'; for (int i = 0; i < s.size(); ++i) { if (s[i] == '(' || s[i] == '[' || s[i] == '{') st.push(s[i]); else if (!st.empty() && st.top() == ma[s[i]]) st.pop(); else { cout << "No" << endl; return 0; } } if (!st.empty()) cout << "No" << endl; else cout << "Yes" << endl; return 0; }

5th Feb 2023, 1:47 PM
sakkikoishi
sakkikoishi - avatar
2 Answers
0
n = int(input()) s = input() st = [] ma = {')': '(', ']': '[', '}': '{'} for i in range(len(s)): if s[i] in ['(', '[', '{']: st.append(s[i]) elif len(st) > 0 and st[-1] == ma[s[i]]: st.pop() else: print("No") exit(0) if len(st) > 0: print("No") else: print("Yes")
5th Feb 2023, 5:00 PM
Bahhaⵣ
Bahhaⵣ - avatar
22nd Feb 2024, 1:13 PM
Aga Oga
Aga Oga - avatar