#68. startHi
startHi
Background
Description
Given a string, return true if the string starts with "hi" and false otherwise.
Format
Input
Output
Samples
hi there
true
hi
true
hello hi
false
Limitation
1s, 1024KiB for each test case.
Given a string, return true if the string starts with "hi" and false otherwise.
hi there
true
hi
true
hello hi
false
1s, 1024KiB for each test case.