-
On your own, can you write a bit of code that prompts the user for a base-10 quantity then outputs it in binary, octal, and hex?
-
Example:
Quantity (base-10): 29 base-2: 11101 base-8: 35 base-16: 1D
On your own, can you write a bit of code that prompts the user for a base-10 quantity then outputs it in binary, octal, and hex?
Example:
Quantity (base-10): 29
base-2: 11101
base-8: 35
base-16: 1D
## L1. Append Multiple Nodes and Count | |
def test_(self): | |
import list | |
list = list.List() | |
self.assertEquals(list.count(), 0) | |
list.append("one") | |
list.append("two") | |
list.append("three") |
# This was the first version where the list does more "head-checking" | |
# instead of the final version (list.py) where the head uses a null object | |
class RecursiveList: | |
def __init__(self): | |
self.head = None | |
def count(self): | |
if self.head: | |
return self.head.count() |
class Node: | |
def __init__(self, value): | |
self.value = value | |
self.link = None | |
def append(self, value): | |
if self.link: | |
self.link.append(value) | |
else: | |
self.link = Node(value) |
Hello Courtney,
The Brand Coordinator role stood out to me because I am creative, organized, and have over 7 years of professional media experience. In each position I've held, I have developed systems for managing campaigns, created multi-channel content, and collaborated with team members across departments.
Through leading various production and digital media campaigns for organizations in Denver, CO over the past 4 years, I have increased engagement and operating funds by over 11% collectively. I've utilized Google Analytics to create strategic marketing plans for clients and manipulated metadata and tags on WordPress sites to enhance SEO. Further, my communications work with Skill Distillery involved managing a number of events and creating marketing collateral to increase company recognition and strengthen employer relationships.
I am self-motivated, learn quickly, and work well under pressure. Much of my work has been directly related to education and I believe my interpersonal skills would allow me
Hi Courtney,
My name is Connie, and I'm a brand-minded content strategist and copywriter currently looking for new opportunities in the Denver area. I wanted to throw my name in the hat for your Brand Coordinator position! I was referred to your job posting by Josh Cass at Bonusly--he said he wasn't sure if you guys remembered him, but to pass his name along.
With experience in fast-paced agency environments, I have the chops to get things done accurately, efficiently and creatively. At my previous Copywriter positions for Jacobs Agency and Misix, I took ownership of my clients’ voice, tone and style to create meaningful content of all types. From crafting the perfect subject line to crafting a more engaging case study, I work strategically to develop and represent a brand’s goals and objectives.
I don’t have much experience in managing marketing campaigns on my own, but I am very much willing to learn. I believe strongly in alternative education tracks, especially for underprivileged and undervalued c
Complete these steps with roles Person 1 (P1) and Person 2 (P2):