Standard escape codes are prefixed with Escape
:
- Ctrl-Key:
^[
- Octal:
\033
- Unicode:
\u001b
- Hexadecimal:
\x1B
- Decimal:
27
package main | |
import ( | |
"encoding/json" | |
"fmt" | |
"bytes" | |
) | |
type Obj struct { |
import java.util.*; | |
import java.io.*; | |
class Solution { | |
class Node { | |
Node left; | |
Node right; | |
int data; | |
import java.io.*; | |
import java.math.*; | |
import java.security.*; | |
import java.text.*; | |
import java.util.*; | |
import java.util.concurrent.*; | |
import java.util.function.*; | |
import java.util.regex.*; | |
import java.util.stream.*; | |
import static java.util.stream.Collectors.joining; |
<!DOCTYPE html> <!-- this tells us the html version --> | |
<html> | |
<head> | |
<link rel="stylesheets" type="text/css" href="styles.css"> | |
<title>Test html</title> | |
</head> | |
<body> |
kip = [] | |
s = raw_input('give me a string: ') | |
v = s[len(s) - 1] | |
for a in range(len(s)): | |
store = s[a] | |
for i in range(len(s)): | |
z = v == s[len(s) - 1] | |
if z == True: | |
c = (i + 1 >= len(s)) | |
if c == False: |