Skip to content

Commit

Permalink
Update PS.code-snippets
Browse files Browse the repository at this point in the history
  • Loading branch information
Pentagon03 authored Aug 6, 2024
1 parent bcfd4b4 commit cfcf88c
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions Etc/PS.code-snippets
Original file line number Diff line number Diff line change
Expand Up @@ -219,17 +219,15 @@
"scope": "python",
"body": [
"from sys import stdin, stdout, exit",
"RS = lambda:stdin.readline().rstrip()",
"RI = lambda:int(RS())",
"RL = lambda:list(map(int,RS().split()))",
"RLL = lambda n: [RI() for _ in range(n)]",
"PI = lambda x:stdout.write(str(x)+'\\n')",
"INF = 10**9",
"EPS = 1e-9",
"MOD = 10**9 + 7",
"rs = lambda:stdin.readline().rstrip()",
"ri = lambda:int(RS())",
"rl = lambda:list(map(int,RS().split()))",
"rll = lambda n: [RI() for _ in range(n)]",
"pr = lambda x:stdout.write(str(x)+'\\n')",
"inf = 10**9",
"mod = 10**9 + 7",
"",
"'''Solution",
"https://acmicpc.net/problem/${TM_FILENAME_BASE}",
"${0}",
"'''",
"",
Expand Down

0 comments on commit cfcf88c

Please sign in to comment.