exercism / exercism/problem-specifications

Exercise Proposal: HTTP Query string builder

Open
#225 6 comments 0 reactions 0 assignees View on GitHub
new exercise idea
Dominant language
Ruby
Stars
358
Forks
563
Avg merge
18h 41m
Merged PRs (30d)
2

Description

I've recently taken on the challenge of creating a query string builder, and I found it to be a rewarding exercise.

This is an exercise that I enjoy doing whenever I learn a new language and would like to share it.
##### Exercise:

```
Write a program that provided a list of tuples can return a HTTP query string.

For example: (Rust-specific)

Input:
let params = vec![("key1", "value1"), ("key2", "value2")];

Output:
"?key1=value1&key2=value2"
```

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.