id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

amgreyson@gmail.com > isVertical
prev  |  next  |  chance

Given two distinct ordered pairs, (redX, redY) and (whiteX, whiteY), return whether the line that passes through them is vertical or not vertical.


isVertical(-3.0, 7.0, 9.0, 3.0) → 'not vertical'
isVertical(4.0, -5.0, 4.0, 8.0) → 'vertical'
isVertical(-3.0, 8.0, -3.0, 35.0) → 'vertical'

...Save, Compile, Run (ctrl-enter)

def isVertical(redX, redY, whiteX, whiteY):

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Python Help

Difficulty: 175

Copyright Nick Parlante 2017 - privacy