Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Viraj0112
/
rl_code_fix_env
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
rl_code_fix_env
/
dataset
/
problem_6
/
helpers.py
Viraj0112
Upload folder using huggingface_hub
03a907a
verified
1 day ago
raw
Copy download link
history
blame
contribute
delete
106 Bytes
import
re
def
tokenize
(
text:
str
) ->
list
[
str
]:
return
re.findall(
r"[A-Za-z']+"
, text.lower())