You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
1.4 KiB

3 years ago
## string literals
### Instructions
Create the following functions:
- `is_empty`: that returns `true` if the string is empty.
- `is_ascii`: that returns `true` if all characters are within the ASCII range.
- `contains`: that returns `true` if the string contains the given pattern.
- `split_at`: that divides a string in two returning a tuple.
- `find`: that returns the index of the first character of a given string that matches the pattern.
### Expected functions
```rust
3 years ago
pub fn is_empty(v: &str) -> bool {
}
3 years ago
pub fn is_ascii(v: &str) -> bool {
}
3 years ago
pub fn contains(v: &str, pat: &str) -> bool {
}
3 years ago
pub fn split_at(v: &str, index: usize) -> (&str, &str) {
}
3 years ago
pub fn find(v: &str, pat: char) -> usize {
}
```
> Your heap allocations will be monitored to ensure that you do not make too many allocations, and that your allocations are reasonably sized.
### Usage
Here is a program to test your function
```rust
3 years ago
use string_literals::*;
fn main() {
println!("{}", is_empty(""));
println!("{}", is_ascii("rust"));
println!("{}", contains("rust", "ru"));
println!("{:?}", split_at("rust", 2));
println!("{}", find("rust", 'u'));
}
```
And its output
```console
$ cargo run
true
true
true
("ru", "st")
1
$
```
### Notions
- [stack and heap](https://doc.rust-lang.org/1.22.0/book/first-edition/the-stack-and-the-heap.html)
- [Literals](https://doc.rust-lang.org/rust-by-example/primitives/literals.html)